100
How do I change the visual aspect for thumb parts in the scroll bars, using EBN

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 2,"c:\exontrol\images\pushed.ebn");
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 3,"c:\exontrol\images\hot.ebn");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(388) = 16777216");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(389) = 33554432");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(391) = 50331648");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(260) = 16777216");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(261) = 33554432");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(263) = 50331648");
_ObjectSetProperty( exfileview , "ColumnAutoResize", 0);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnWidth(`Name`) = 256");

99
How do I change the visual aspect only for the thumb in the scroll bar, using EBN

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 2,"c:\exontrol\images\pushed.ebn");
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 3,"c:\exontrol\images\hot.ebn");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(388) = 16777216");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(389) = 33554432");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(391) = 50331648");
_ObjectSetProperty( exfileview , "ColumnAutoResize", 0);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnWidth(`Name`) = 256");

98
How to check whether the control hides the three-letter file-name extensions for certain files, reducing clutter in folder windows

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Option(4) = True");
_ObjectCallMethod( exfileview , "Refresh");

97
How can I change the date format in the Modified column

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Option(2) = `yyyyy `");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Option(3) = `hh:mm`");
_ObjectCallMethod( exfileview , "Refresh");

96
How can I change the date format in the Modified column

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Option(2) = `ddd, MMM dd yy`");
_ObjectCallMethod( exfileview , "Refresh");

95
How can I change the format of the caption that's shown in the Modified column, if ModifiedDaysAgo property is used

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ModifiedDaysAgo", 356);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Option(1) = `vor %i Tagen`");
_ObjectCallMethod( exfileview , "Refresh");

94
How can I change the "today" caption that's shown in the Modified column

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ModifiedDaysAgo", 356);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Option(0) = `__ new today __`");
_ObjectCallMethod( exfileview , "Refresh");

93
Is there any way to rename a column

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnCaption(`Name`) = `__ new name __`");

92
Is there any option to exclude folders that match a pattern

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ExcludeFolderFilter", "W*");

91
Is there any option to include only folders that match a pattern

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "IncludeFolderFilter", "W*");

90
How can I include files when folders are expanded

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ExpandFolders", -1);
_ObjectSetProperty( exfileview , "IncludeFilesInFolder", -1);

89
How do I get the file or folder from the cursor
// MouseMove event - Occurs when the user moves the mouse.
FUNCTION exfileviewEvents_MouseMove(OBJECT exfileview, INT Button, INT Shift, INT X, INT Y)
	Message( _ObjectCallMethod(exfileview, "ExecuteTemplate", "FileFromPoint(-1,-1)") );
END

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
ObjectAssociateEvents("exfileviewEvents", exfileview);
Message( _ObjectCallMethod(exfileview, "ExecuteTemplate", "FileFromPoint(-1,-1)") );

88
How can I expand programatically a folder

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ExpandFolders", -1);
_ObjectCallMethod( exfileview , "Expand", "WINNT");

87
Is there any option to remove the tooltip when the cursor hovers the column's drop down filter window

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Description(2) = ``");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Description(3) = ``");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Description(4) = ``");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Description(5) = ``");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Description(6) = ``");

86
How can I change the "Filter For" caption in the column's drop down filter window

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Description(1) = `new caption`");

85
How do I change the "All" caption in the drop down filter window

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Description(0) = `new name for (All)`");

84
How do I sort a column

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( exfileview , "Sort", "Name",0);

83
How do I change the font in the filter bar

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterType(`Name`) = 1");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilter(`Name`) = `*.exe|*.com|*.bat`");
_ObjectCallMethod( exfileview , "ApplyFilter");
_ObjectSetProperty( _ObjectGetProperty( exfileview , "FilterBarFont") , "Name", "Verdana");

82
How do I change the visual appearanceof the filter bar

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterType(`Name`) = 1");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilter(`Name`) = `*.exe|*.com|*.bat`");
_ObjectCallMethod( exfileview , "ApplyFilter");
_ObjectSetProperty( exfileview , "FilterBarBackColor", 16777216);

81
How do I change the color in the filter bar

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterType(`Name`) = 1");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilter(`Name`) = `*.exe|*.com|*.bat`");
_ObjectCallMethod( exfileview , "ApplyFilter");
_ObjectSetProperty( exfileview , "FilterBarBackColor", 255);

80
How do I change the color in the filter bar

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterType(`Name`) = 1");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilter(`Name`) = `*.exe|*.com|*.bat`");
_ObjectCallMethod( exfileview , "ApplyFilter");
_ObjectSetProperty( exfileview , "FilterBarForeColor", 255);

79
How do I specify the height of the filter bar

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterType(`Name`) = 1");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilter(`Name`) = `*.exe|*.com|*.bat`");
_ObjectCallMethod( exfileview , "ApplyFilter");
_ObjectSetProperty( exfileview , "FilterBarHeight", 32);

78
How do I remove or clear the filter
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterType(`Name`) = 1");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilter(`Name`) = `*.exe|*.com|*.bat`");
_ObjectCallMethod( exfileview , "ApplyFilter");
_ObjectCallMethod( exfileview , "ClearFilter");

77
How do I change the caption in the filter bar

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterType(`Name`) = 1");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilter(`Name`) = `*.exe|*.com|*.bat`");
_ObjectCallMethod( exfileview , "ApplyFilter");
_ObjectSetProperty( exfileview , "FilterBarCaption", "new filter");

76
How do I filter a column

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterType(`Name`) = 1");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilter(`Name`) = `*.exe|*.com|*.bat`");
_ObjectCallMethod( exfileview , "ApplyFilter");

75
How can I enlarge the height of the drop down filter window

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectSetProperty( exfileview , "FilterBarDropDownHeight", "-256");

74
How do I remove or clear my own filters

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod( exfileview , "AddColumnCustomFilter", "Name","(Executable files)","*.exe|*.com|*.bat");
_ObjectCallMethod( exfileview , "ClearColumnCustomFilters", "Name");

73
How do I specify my own filters

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod( exfileview , "AddColumnCustomFilter", "Name","(Executable files)","*.exe|*.com|*.bat");

72
How can I enlarge the width of the drop down filter window

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "FilterBarDropDownWidth(`Name`) = 2");

71
How can I enlarge the width of the drop down filter window

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "FilterBarDropDownWidth(`Name`) = `-256`");

70
How can I enable filtering the folders and files

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");

69
How do I display in the Modified column, the number of days since the file or folder was changed

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ModifiedDaysAgo", 356);

68
How do I stop programatically the searching
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( exfileview , "StopSearch");

67
How do I search or find files

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Search", "A*.A*");

66
How can I expand or collapse a folder, when the user double clicks it

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ExpandFolders", -1);
_ObjectSetProperty( exfileview , "ExpandOnDblClk", -1);

65
How can I change the default icon being displayed for parent folders

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( exfileview , "LoadIcon", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\week.ico`)"),1234);
_ObjectSetProperty( exfileview , "IncludeParentIconKey", 1234);

64
How can I show only folders

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "IncludeFiles", 0);

63
How can I show or hide the expand/collapse buttons

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ExpandFolders", -1);
_ObjectSetProperty( exfileview , "HasLines", -1);
_ObjectSetProperty( exfileview , "HasLinesAtRoot", -1);
_ObjectSetProperty( exfileview , "HasButtons", 0);

62
How can I show the lines at root

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ExpandFolders", -1);
_ObjectSetProperty( exfileview , "HasLines", -1);
_ObjectSetProperty( exfileview , "HasLinesAtRoot", -1);

61
How can I show the lines between child and parents

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ExpandFolders", -1);
_ObjectSetProperty( exfileview , "HasLines", -1);

60
Is there any option to add an expand or collapse (+/-) buttons left to each folder

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ExpandFolders", -1);

59
How do I show or hide the first item that shows when I browse new folders

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "IncludeParent", 0);

58
How do I enable or disable renaming the folders and files
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "AllowRename", -1);

57
How do I change the width of the columns

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ColumnAutoResize", 0);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnWidth(`Name`) = 256");

56
How do I change the width of the columns

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnWidth(`Name`) = 256");

55
How do I show or hide a column

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnVisible(`Type`) = False");

54
How can I get the path of the browsed folder
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "BrowseFolderPath", "C:\Temp");

53
The Change event is not fired. What can I do
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ChangeNotification", -1);

52
How do I execute a command from the file's content menu (sample 1)

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( exfileview , "BeginUpdate");
_ObjectSetProperty( exfileview , "ExploreFromHere", "");
_ObjectCallMethod( exfileview , "ExecuteContextCommand", "C:\",-1,"Properties");
_ObjectCallMethod( exfileview , "EndUpdate");

51
How do I change the width of the columns

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ColumnAutoResize", 0);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnWidth(`Name`) = 256");

50
How can I refresh automatically the control so it reflect the changes in the browsed folder
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "AutoUpdate", -1);

49
May I disable the control's content menu, that's displayed when the user does right click
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "AllowMenuContext", 0);

48
How do I refresh the control
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( exfileview , "Refresh");

47
How do I enable single or multiple selection

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "SingleSel", 0);

46
Can I display only all execpts the *.exe and *.com files using wild characters

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ExcludeFilter", "*.exe *.com *.bat");

45
Can I display only *.exe and *.com files using wild characters

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "IncludeFilter", "*.exe *.com *.bat");

44
Can I change the folder being explored
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ExploreFromHere", "c:\Program Files");

43
Can I display only files

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "IncludeFolders", 0);

42
How can I change the default icon being displayed for specified folders

OBJECT exfileview,filetype;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( exfileview , "LoadIcon", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\week.ico`)"),1234);
filetype = _ObjectCallMethod( _ObjectGetProperty( exfileview , "FileTypes") , "Add", "W*");
	_ObjectSetProperty( filetype , "Folder", -1);
	_ObjectSetProperty( filetype , "IconIndex", 1234);
	_ObjectSetProperty( filetype , "Bold", -1);
	_ObjectCallMethod( filetype , "Apply");

41
How can I change the default icon being displayed for specified files

OBJECT exfileview,filetype;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( exfileview , "LoadIcon", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\week.ico`)"),1234);
filetype = _ObjectCallMethod( _ObjectGetProperty( exfileview , "FileTypes") , "Add", "*.bat *.com *.exe");
	_ObjectSetProperty( filetype , "IconIndex", 1234);
	_ObjectCallMethod( filetype , "Apply");

40
How can I change the default icon being displayed for files

OBJECT exfileview,filetype;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( exfileview , "LoadIcon", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\week.ico`)"),1234);
filetype = _ObjectCallMethod( _ObjectGetProperty( exfileview , "FileTypes") , "Add", "*");
	_ObjectSetProperty( filetype , "IconIndex", 1234);
	_ObjectCallMethod( filetype , "Apply");

39
How can I change the default icon being displayed for folders

OBJECT exfileview,filetype;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( exfileview , "LoadIcon", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\week.ico`)"),1234);
filetype = _ObjectCallMethod( _ObjectGetProperty( exfileview , "FileTypes") , "Add", "*");
	_ObjectSetProperty( filetype , "Folder", -1);
	_ObjectSetProperty( filetype , "IconIndex", 1234);
	_ObjectCallMethod( filetype , "Apply");

38
Does your control support partial check feature, so a parent item gets checked when all its child items are checked

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "HasCheckBox", 1);
_ObjectSetProperty( exfileview , "ExpandFolders", -1);

37
Can I add a checkbox to each file or folder

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "HasCheckBox", -1);

36
How do I put a picture on the center of the control

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Picture", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( exfileview , "PictureDisplay", 17);

35
How do I resize/stretch a picture on the control's background

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Picture", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( exfileview , "PictureDisplay", 49);

34
How do I put a picture on the control's center right bottom side

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Picture", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( exfileview , "PictureDisplay", 34);

33
How do I put a picture on the control's center left bottom side

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Picture", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( exfileview , "PictureDisplay", 32);

32
How do I put a picture on the control's center top side

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Picture", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( exfileview , "PictureDisplay", 1);

31
How do I put a picture on the control's right top corner

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Picture", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( exfileview , "PictureDisplay", 2);

30
How do I put a picture on the control's left top corner

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Picture", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));
_ObjectSetProperty( exfileview , "PictureDisplay", 0);

29
How do I put a picture on the control's background

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Picture", _ObjectCallMethod( exfileview , "ExecuteTemplate", "loadpicture(`c:\exontrol\images\zipdisk.gif`)"));

28
How do I change the control's border, using your EBN files

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 1,"c:\exontrol\images\hot.ebn");
_ObjectSetProperty( exfileview , "Appearance", 16777216);
_ObjectSetProperty( exfileview , "BackColor", 16777215);

27
How do I remove the control's border

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Appearance", 0);

26
How can I change the foreground color of the control's header

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ForeColorHeader", 255);

25
How can I change the background color of the control's header

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "BackColorHeader", 65535);
_ObjectSetProperty( exfileview , "HeaderAppearance", 1);

24
How can I change the visual appearance of the header, using EBN files

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectSetProperty( exfileview , "BackColorHeader", 16777216);

23
How can I change the header's appearance

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "HeaderAppearance", 1);

22
How do I disable the control
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Enabled", 0);

21
How do I change the visual appearance effect for the selected item, using EBN

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectSetProperty( exfileview , "SelBackColor", 16777216);
_ObjectSetProperty( exfileview , "SelForeColor", 0);

20
How do I change the colors for the selected item

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "SelBackColor", 0);

19
How can I change the control's font

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( _ObjectGetProperty( exfileview , "Font") , "Name", "Tahoma");

18
How do I show or hide the control's header bar

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "HeaderVisible", 0);

17
How do I change the control's foreground color

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ForeColor", 7895160);

16
How do I change the control's background color

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "BackColor", 13158600);

15
How do I prevent painting the control while multiple changes occur
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( exfileview , "BeginUpdate");
_ObjectSetProperty( exfileview , "ForeColor", 255);
_ObjectSetProperty( exfileview , "BackColor", 16777215);
_ObjectCallMethod( exfileview , "EndUpdate");

14
How do I change the height of the items

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "DefaultItemHeight", 13);
_ObjectCallMethod( exfileview , "Refresh");

13
How do I enable resizing the columns at runtime

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ColumnsAllowSizing", -1);

12
How do I call your x-script language

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( exfileview , "ExecuteTemplate", "BackColor = RGB(255,0,0)");

11
How do I call your x-script language

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "Template", "BackColor = RGB(255,0,0)");

10
Can I change the order of the buttons in the scroll bar

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollOrderParts(1) = `t,l,r`");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollOrderParts(0) = `t,l,r`");
_ObjectSetProperty( exfileview , "ColumnAutoResize", 0);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnWidth(`Name`) = 256");

9
The thumb size seems to be very small. Can I make it bigger

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollThumbSize(1) = 64");
_ObjectSetProperty( exfileview , "ColumnAutoResize", 0);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnWidth(`Name`) = 256");

8
How do I enlarge or change the size of the control's scrollbars

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectSetProperty( exfileview , "ScrollHeight", 18);
_ObjectSetProperty( exfileview , "ScrollWidth", 18);
_ObjectSetProperty( exfileview , "ScrollButtonWidth", 18);
_ObjectSetProperty( exfileview , "ScrollButtonHeight", 18);
_ObjectSetProperty( exfileview , "ColumnAutoResize", 0);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnWidth(`Name`) = 256");

7
How do I assign a tooltip to a scrollbar

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollToolTip(1) = `This is a tooltip being shown when you click and drag the thumb in the vetrical scroll bar`");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollPartCaption(1,256) = `This is just a text`");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollFont(0).Size = 12");
_ObjectSetProperty( exfileview , "ScrollWidth", 20);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollThumbSize(0) = 148");
_ObjectSetProperty( exfileview , "ColumnAutoResize", 0);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnWidth(`Name`) = 256");

6
I need to add a button in the scroll bar. Is this possible

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollPartVisible(1,32768) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollPartCaption(1,32768) = `1`");
_ObjectSetProperty( exfileview , "ColumnAutoResize", 0);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnWidth(`Name`) = 256");

5
Can I display an additional buttons in the scroll bar

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollPartVisible(1,32768) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollPartVisible(1,16384) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollPartVisible(1,1) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ScrollPartVisible(1,2) = True");
_ObjectSetProperty( exfileview , "ColumnAutoResize", 0);
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnWidth(`Name`) = 256");

4
Is there any option to highligth the column from the cursor - point
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(32) = 16777215");

3
Is there any option to highligth the column from the cursor - point
OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(32) = 16777216");

2
How do I change the visual aspect of the close button in the filter bar, using EBN

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(1) = 16777216");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterType(`Name`) = 1");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilter(`Name`) = `*.exe`");
_ObjectCallMethod( exfileview , "ApplyFilter");

1
How do I change the visual aspect of the drop down filter button, using EBN

OBJECT exfileview;

exfileview =  ObjectByName("AN1") ;
_ObjectCallMethod( _ObjectGetProperty( exfileview , "VisualAppearance") , "Add", 1,"c:\exontrol\images\normal.ebn");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "Background(0) = 16777216");
_ObjectCallMethod(exfileview, "ExecuteTemplate", "ColumnFilterButton(`Name`) = True");